home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 November / Chip_2001-11_cd1.bin / sharewar / Slunec / app / is32ex.exe / {app} / Samples / Sample2.iss < prev    next >
Text File  |  2001-04-14  |  856b  |  25 lines

  1. ; -- Sample2.iss --
  2. ; Same as Sample1.iss, but creates its icon in the Programs folder of the
  3. ; Start Menu instead of in a subfolder, and also creates a desktop icon.
  4.  
  5. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  6.  
  7. [Setup]
  8. AppName=My Program
  9. AppVerName=My Program version 1.5
  10. AppCopyright=Copyright (C) 1997-2000 My Company, Inc.
  11. DefaultDirName={pf}\My Program
  12. DisableProgramGroupPage=yes
  13. ; ^ since no icons will be created in "{group}", we don't need the wizard
  14. ;   to ask for a group name.
  15. UninstallDisplayIcon={app}\MyProg.exe
  16.  
  17. [Files]
  18. Source: "MyProg.exe"; DestDir: "{app}"
  19. Source: "MyProg.hlp"; DestDir: "{app}"
  20. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  21.  
  22. [Icons]
  23. Name: "{commonprograms}\My Program"; Filename: "{app}\MyProg.exe"
  24. Name: "{userdesktop}\My Program"; Filename: "{app}\MyProg.exe"
  25.